home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Electronic Clipper 1998 July
/
Electronic Clipper 1998-07.iso
/
Idea Source®
/
Main.Dir
/
00005_Script_go the frame
< prev
next >
Wrap
Text File
|
1998-05-20
|
727b
|
36 lines
on exitFrame
go the frame
repeat with n=8 to 12
if rollover(n) then
set the visible of sprite n to false
updatestage
end if
end repeat
repeat with n=8 to 12
if not rollover(n) then
set the visible of sprite n to true
updatestage
end if
end repeat
repeat with n=13 to 19
if rollover(n) then
set the visible of sprite n to false
set the visible of sprite (n + 15) to true
updatestage
end if
end repeat
repeat with n=13 to 19
if not rollover(n) then
set the visible of sprite n to true
set the visible of sprite (n + 15) to false
updatestage
end if
end repeat
end